/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  7
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      Cp;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 -3 0 0 1 0 0];

internalField   uniform 15091.7;

boundaryField
{
    empty
    {
        type            empty;
    }

    centrep
    {
      type            fixedValue;
      value           $internalField;
    }

    surfacep
    {
      type            fixedValue;
      value           $internalField;
    }

    surfacen
    {
      type               fixedGradient;
      gradient           -124551614.2;  //(-I)/(1*F*(3/Rn)*solidfracn*Ln*Dn)
    }

    centren
    {
      type               zeroGradient;
    }

}

// ************************************************************************* //
